Fix a message
authorjustbur <justin@burkett.cc>
Mon, 13 Jul 2015 11:54:16 +0000 (07:54 -0400)
committerjustbur <justin@burkett.cc>
Mon, 13 Jul 2015 11:54:16 +0000 (07:54 -0400)
which-key.el

index e66e789379abd130df0706cac85bf748e4e19a27..9e7fa890ff26be5bd867a4273345e70f090db3a5 100644 (file)
@@ -272,7 +272,8 @@ bottom."
   (when (or (not (stringp key)) (not (stringp repl)))
     (error "KEY and REPL should be strings"))
   (when (assoc-string key alist)
-    (message "which-key note: The key %s already exists in %s. This addition will override that replacement."))
+    (message "which-key note: The key %s already exists in %s. This addition will override that replacement."
+             key alist))
   (setq alist (push (cons key repl) alist))
   alist)